c# check if string is empty

87

c# check if textbox is not empty -

if (String.IsNullOrEmpty(textBox1.Text))
{
    // Do something...
}

Comments

Submit
0 Comments